Some cases have an annual maximum contribution to all FSA plans where the combined contribution cannot be more than a maximum amount. This specific example had individual maximums of 7500 and 5000, with a combined of no more than 9000. Put in OnLoad of Health plan (with correct application names):
var otherFSA = Event.Applications['DependentCareFSAAccount'];
if (otherFSA != null && otherFSA.ApplicationDate != null && !otherFSA.Waived)
{
var maxAmount = 9000 - otherFSA.BenefitAmount;
if (maxAmount > 7500) maxAmount = 7500;
Event.Config.SetAnnualMaximum(0, 0, maxAmount);
}
else Event.Config.SetAnnualMaximum(0, 0, 7500);
And in Onload of Dependent Plan:
var otherFSA = Event.Applications['HealthCareFSAAccount'];
if (otherFSA != null && otherFSA.ApplicationDate != null && !otherFSA.Waived)
{
var maxAmount = 9000 - otherFSA.BenefitAmount;
if (maxAmount > 5000) maxAmount = 5000;
Event.Config.SetAnnualMaximum(0, 0, maxAmount);
}
else Event.Config.SetAnnualMaximum(0, 0, 5000);